[]
Returns an absolute url for the specified action.
protected string Location(Expression<Func<Func<IActionResult>>> expression, IDictionary<string, object> values = null)
Protected Function Location(expression As Expression(Of Func(Of Func(Of IActionResult))), Optional values As IDictionary(Of String, Object) = Nothing) As String
| Type | Name | Description |
|---|---|---|
| Expression<Func<Func<IActionResult>>> | expression | The expression which returns the function of calling the action method. |
| IDictionary<string, object> | values | The dictionary that contains the parameters for the action. |
| Type | Description |
|---|---|
| string | The absolute url for the specified action. |
Location(()=>this.Action);
Returns an absolute url for the specified action.
protected string Location<T1>(Expression<Func<Func<T1, IActionResult>>> expression, IDictionary<string, object> values = null)
Protected Function Location(Of T1)(expression As Expression(Of Func(Of Func(Of T1, IActionResult))), Optional values As IDictionary(Of String, Object) = Nothing) As String
| Type | Name | Description |
|---|---|---|
| Expression<Func<Func<T1, IActionResult>>> | expression | The expression which returns the function of calling the action method. |
| IDictionary<string, object> | values | The dictionary that contains the parameters for the action. |
| Type | Description |
|---|---|
| string | The absolute url for the specified action. |
| Name | Description |
|---|---|
| T1 |
Location<string>(()=>this.Action);
Returns an absolute url for the specified action.
protected string Location<T1, T2>(Expression<Func<Func<T1, T2, IActionResult>>> expression, IDictionary<string, object> values = null)
Protected Function Location(Of T1, T2)(expression As Expression(Of Func(Of Func(Of T1, T2, IActionResult))), Optional values As IDictionary(Of String, Object) = Nothing) As String
| Type | Name | Description |
|---|---|---|
| Expression<Func<Func<T1, T2, IActionResult>>> | expression | The expression which returns the function of calling the action method. |
| IDictionary<string, object> | values | The dictionary that contains the parameters for the action. |
| Type | Description |
|---|---|
| string | The absolute url for the specified action. |
| Name | Description |
|---|---|
| T1 | |
| T2 |
Location<string, string>(()=>this.Action);
Returns an absolute url for the specified action.
protected string Location<T1, T2, T3>(Expression<Func<Func<T1, T2, T3, IActionResult>>> expression, IDictionary<string, object> values = null)
Protected Function Location(Of T1, T2, T3)(expression As Expression(Of Func(Of Func(Of T1, T2, T3, IActionResult))), Optional values As IDictionary(Of String, Object) = Nothing) As String
| Type | Name | Description |
|---|---|---|
| Expression<Func<Func<T1, T2, T3, IActionResult>>> | expression | The expression which returns the function of calling the action method. |
| IDictionary<string, object> | values | The dictionary that contains the parameters for the action. |
| Type | Description |
|---|---|
| string | The absolute url for the specified action. |
| Name | Description |
|---|---|
| T1 | |
| T2 | |
| T3 |
Location<string, string, string>(()=>this.Action);
Returns an absolute url for the specified action.
protected string Location<T1, T2, T3, T4>(Expression<Func<Func<T1, T2, T3, T4, IActionResult>>> expression, IDictionary<string, object> values = null)
Protected Function Location(Of T1, T2, T3, T4)(expression As Expression(Of Func(Of Func(Of T1, T2, T3, T4, IActionResult))), Optional values As IDictionary(Of String, Object) = Nothing) As String
| Type | Name | Description |
|---|---|---|
| Expression<Func<Func<T1, T2, T3, T4, IActionResult>>> | expression | The expression which returns the function of calling the action method. |
| IDictionary<string, object> | values | The dictionary that contains the parameters for the action. |
| Type | Description |
|---|---|
| string | The absolute url for the specified action. |
| Name | Description |
|---|---|
| T1 | |
| T2 | |
| T3 | |
| T4 |
Location<string, string, string, string>(()=>this.Action);
Returns an absolute url for the specified action.
protected string Location<T1, T2, T3, T4, T5>(Expression<Func<Func<T1, T2, T3, T4, T5, IActionResult>>> expression, IDictionary<string, object> values = null)
Protected Function Location(Of T1, T2, T3, T4, T5)(expression As Expression(Of Func(Of Func(Of T1, T2, T3, T4, T5, IActionResult))), Optional values As IDictionary(Of String, Object) = Nothing) As String
| Type | Name | Description |
|---|---|---|
| Expression<Func<Func<T1, T2, T3, T4, T5, IActionResult>>> | expression | The expression which returns the function of calling the action method. |
| IDictionary<string, object> | values | The dictionary that contains the parameters for the action. |
| Type | Description |
|---|---|
| string | The absolute url for the specified action. |
| Name | Description |
|---|---|
| T1 | |
| T2 | |
| T3 | |
| T4 | |
| T5 |
Location<string, string, string, string, string>(()=>this.Action);
Returns an absolute url for the specified action.
protected string Location(string actionName, IDictionary<string, object> values = null)
Protected Function Location(actionName As String, Optional values As IDictionary(Of String, Object) = Nothing) As String
| Type | Name | Description |
|---|---|---|
| string | actionName | The name of the action. |
| IDictionary<string, object> | values | The dictionary that contains the parameters for the action. |
| Type | Description |
|---|---|
| string | The absolute url for the specified action. |
Returns an absolute url for the specified action.
protected string Location(MethodInfo methodInfo, IDictionary<string, object> values = null)
Protected Function Location(methodInfo As MethodInfo, Optional values As IDictionary(Of String, Object) = Nothing) As String
| Type | Name | Description |
|---|---|---|
| MethodInfo | methodInfo | The method for the action. |
| IDictionary<string, object> | values | The dictionary that contains the parameters for the action. |
| Type | Description |
|---|---|
| string | The absolute url for the specified action. |